home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / SoundApps / aa_m68k_Only / Just.app / Instruments / Plucked String.score < prev   
Encoding:
Text File  |  1994-06-07  |  856 b   |  29 lines

  1. /* 
  2.     Emma.score     
  3.  
  4.     "Emma" by Emma Banjo
  5.  
  6.     This is a sample scorefile illustrating the use of the Pluck 
  7.     synthpatch.
  8.     
  9.     If you use your own Music Kit program, Pluck must be loaded into your 
  10.     program to play this.  See <musickit/synthpatches/Pluck.h> for details
  11.     on the meaning of the parameters in the Notes in this file. 
  12.  
  13.     Feel free to copy and modify this example.
  14. */
  15.  
  16. part p1; /* Declare five parts. */
  17.  
  18. p1 synthPatch:"Pluck" synthPatchCount:2;
  19. BEGIN;        /* This starts the "body" of the scorefile. */
  20. t .1;         /* Time is in beats and is modified by tempo. */
  21. p1 (noteUpdate) ampRel:1 decay:100 amp:.9 bright:.9 velocitySensitivity:1.0;
  22.     /* Note updates with no tag apply to all note tags of the part. 
  23.        In this case, we use the same note tag over and
  24.            over in each part, thus each part consists of one long phrase. */
  25. END;
  26.  
  27.  
  28.  
  29.